home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compendium Deluxe 2
/
LSD and 17bit Compendium Deluxe - Volume II.iso
/
a
/
prog
/
asmsrc
/
thesource-7.lha
/
Source
/
DefFunc.lha
/
DefFunc
/
Makefile
< prev
next >
Wrap
Makefile
|
1993-12-14
|
382b
|
24 lines
# for library file
LIBDIR = /usr/lib
# for include file
INCDIR = /usr/include
CFLAGS = -O
OBJS = defunc.o dfctree.o dfcsymtable.o y.tab.o
y.tab.c: dfcparse.y
$(YACC.y) dfcparse.y
install: libdfc.a
install libdfc.a $(LIBDIR)
install defunc.h $(INCDIR)
ranlib -t $(LIBDIR)/libdfc.a
libdfc.a: $(OBJS)
$(AR) $(ARFLAGS) $@ $(OBJS)
ranlib $@
clean:
$(RM) $(OBJS) y.tab.c